26. Updating Linux
Updating Linux Heading
Updating Linux
ND545 C02 L02 A22 Updating Linux
Updating Linux Notes
Recap
- CentOS updates using Yum. Consider installing a single server as the central Yum repository and update locally.
- By verifying what updates are currently installed you can more effectively troubleshoot issues.
- Consider having a set of test machines that closely match production in configuration, apply updates there first.
Key Terms
- Yum: Yellowdog Updater, Modified is a free and open-source command-line package-management utility for Linux. It allows for automatic updates and package and dependency management.
- Repository: is a central location in which data is stored and managed.
Key Commands
sudo yum list installed
shows a list of installed packages and updatessudo yum list updates
shows a list of available updatessudo yum update --security
runs security updates

Updating with Yum

View Available Updates
ND545 C02 L02 A23 Updating Linux Walkthrough